home *** CD-ROM | disk | FTP | other *** search
/ Software USA 4 #5 / Software USA Volume 4.05.iso / mac / Education / HTML Tricks / Extreme Mac HTML Tricks v2.1 / Extreme Mac HTML Tricks v2.1.rsrc / TEXT_129.txt < prev    next >
Text File  |  1996-10-31  |  3KB  |  54 lines

  1. ¬†                         
  2.  
  3.     Before you start making your page, you may want to surf many web pages to see what you like and don't like about each. Then 
  4. you'll begin to have a concept of what you would like your content to look like.
  5.  
  6.     Through out this document you will be editing the black text of the html code. The dark blue will always be the html code, and will never change. The green color will be the explanations of the html code.
  7.     Below are the nessary parts of every web page. You will need to add the code listed below in the beginning of every web page that you make.
  8.  
  9. <html>
  10. <HEAD>
  11. <TITLE>Put the Title Here</TITLE>
  12. </HEAD>
  13. <body bgcolor="#ffffff" background="imagelocation.gif" text="#000000" link="#0000ff" vlink="#00005a">
  14.  
  15.  
  16. </body>
  17. </html>
  18.  
  19.  
  20. Explanation:
  21.  
  22.      Notice the <html> and </html> and the top and bottom. These tell you that everything in between will be shown on the web page. It begins and ends the web page content. When you add a tag you always have to close it off with the ending. (Usually the same as the start, but with a "/" before the letters)
  23.     
  24. ‚Ä¢The <head> and </head> just tell your browser it's at the heading of the page. The "information" like title is contained here.
  25.     
  26. ‚Ä¢Between the <title> and </title> is where you configure the text you want to appear for the window name on the browser. (This window's name is "Extreme Mac's HTML Tricks v2.0)
  27.     
  28. ‚Ä¢The <body bgcolor="#ffffff" background="imagelocation.gif" text="#000000" link="#0000ff" vlink="00005a"> is where you configure the background color of your page, the background image (if you want one), the text color, the color of a link, and the color of an already viewed link. If you don't want an image as a background, omit the background="imagelocation.gif". To see the code combination of the colors you can use, click on each color below. Note only the "Background = #colorid" . I'll explain the font color later on. Example: If you want to make your background black you would edit this part <body bgcolor="#ffffff" to this <body bgcolor="#000000". It's that simple. To add a gif as your background just find the location of the image on the internet and paste that location were it says background="imagelocation.gif".
  29.  
  30.                Click on color to view the color code for background and font color
  31.  
  32. ¬†                                                                                                                Cyan
  33. ¬†                                                                                                        Blue
  34.     ¬†                                                                                                            Green
  35. ¬†                                                                                                                Light Green
  36. ¬†                                                                                                                Red
  37. ¬†                                                                                                                Light Red
  38. ¬†                                                                                                                Yellow
  39. ¬†                                                                                                                Light Yellow    
  40. ¬†                                                                                                                Brown
  41. ¬†                                                                                                                Light Brown
  42. ¬†                                                                                                                Deep Purple
  43. ¬†                                                                                                                Magenta
  44. ¬†                                                                                                                Dark Grey
  45. ¬†                                                                                                                Light Grey
  46. ¬†                                                                                        White
  47. ¬†                                                                                                                Black
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.